panelDivider


The panelDivider is a container component that renders a spilttable panel.

The position of the divider can be defined using the "dividerPosition" attribute.

The orientation of the spilttable panel can be set to the "vertical" or the "horizontal" using the "orientation" attribute.

The panelDivider requires two named facets ("first", "second") to define each pane.

Example

The following code shows how a panelDivider with a vertical orientation can be created:


<ice:panelDivider>
   <f:facet name="first">
	<ice:panelGroup style="padding:6px;">This is left pane </ice:panelGroup>
   </f:facet>

   <f:facet name="second">
	<ice:panelGroup style="padding:6px;">This is right pane </ice:panelGroup>
   </f:facet>
</ice:panelDivider>


The following code shows how a panelDivider with a horizontal orientation can be created:


<ice:panelDivider orientation="horizontal" >
   <f:facet name="first">
	<ice:panelGroup style="padding:6px;">This is top pane </ice:panelGroup>
   </f:facet>

   <f:facet name="second">
	<ice:panelGroup style="padding:6px;">This is bottom pane </ice:panelGroup>
   </f:facet>
</ice:panelDivider>


Tag Summary

tag-name:
<ice:panelDivider>
tag-class:
com.icesoft.faces.component.paneldivider.PanelDividerTag
component-class:
com.icesoft.faces.component.paneldivider.PanelDivider
component-type:
com.icesoft.faces.PanelDivider
component-family:
javax.faces.Panel
renderer-class:
com.icesoft.faces.component.paneldivider.PanelDividerRenderer
renderer-type:
com.icesoft.faces.PanelDividerRenderer